home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-07-21 | 801 b | 35 lines | [TEXT/CWIE] |
- // ===========================================================================
- // COffScreenPicture.h
- //
- // ©1997 Maxym Runov. All rights reserved.
- //
- // You are free to use this code in any project,
- // but the copyright remains with me.
- // Any questions and notes are welcome.
- //
- // E-mail: max@sunbay.crimea.ua
- // ===========================================================================
- // Version 2.0
-
-
- #pragma once
- #include <LView.h>
- #include <UGWorld.h>
-
- class COffScreenPicture : public LView {
- public:
- enum { class_ID = 'OPic' };
- COffScreenPicture(LStream *inStream);
- ~COffScreenPicture(void);
-
- virtual ResIDT GetPictureID(void);
- virtual void SetPictureID(ResIDT inPictureID);
-
- protected:
- void DrawSelf(void);
-
- private:
- ResIDT mPICTid;
- LGWorld *mGWorld;
- };
-